home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / b / b.lha / B / ex / Makefile < prev    next >
Makefile  |  1988-11-24  |  311b  |  13 lines

  1. # Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1984.
  2. #
  3. # Test the B interpreter.
  4. #
  5. WS    = generate hanoi pi xref
  6.  
  7. examples: ../bin/b ../lib/bint
  8.     @DoExamples bint
  9. smallexamples: ../bin/b ../lib/bsmall
  10.     @DoExamples bsmall
  11. clean:
  12.     -@for ws in $(WS); do cd $$ws; rm -f Out .b_temp .Bed_sugg; cd ..; done
  13.